<style>
.container .categories-style-1,
.container .categories-style-1 * {
    border: none !important;
    background: none !important;
    box-shadow: none !important;
}

.container .categories-style-1 .category-item a:hover {
    background: none !important;
    box-shadow: none !important;
}

.category-thumbnail img {
    width: var(--category-width); /* Controlled by variable */
    height: var(--category-height); /* Controlled by variable */
    border-radius: 50%;
    object-fit: cover;
}

.cart-switcher {
    border: none !important;
}

/* Button Styling */
.pending-control {
    position: absolute;
    top: 600px; /* Adjust closer to slider */
    right: 10px; /* Adjust position */
    padding: 5px 12px;
    background: orange;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    z-index: 1000;
}

.pending-control:hover {
    background: darkorange;
}

:root {
    --category-spacing: -10px; /* Adjust this value to control spacing */
    --category-width: 300px; /* Default desktop size */
    --category-height: 300px; /* Default desktop size */
}

/* Desktop Category Grid */
@media (min-width: 1024px) {
  .categories-style-1 {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px; /* Adjust the spacing between items */
  }
}

/* Mobile Category Size */
@media (max-width: 768px) {
    :root {
        --category-width: 100px; /* Smaller size for mobile */
        --category-height: 100px;
    }
}

.notice-bar {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.notice-bar .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notice-bar .fr-view p {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  color: inherit;
  animation: bounce-scroll 10s ease-in-out infinite alternate;
  padding: 10 50px;
}

@keyframes bounce-scroll {
  0% {
    transform: translateX(10%);
  }
  100% {
    transform: translateX(-100%);
  }
}







.content-box:hover {
    transform: translateY(-5px); 
}
.content-box {
    background-color: #f3f3f3; 
    padding: 20px; 
    font-size: 14px;
    border-radius: 12px; 
   
}























a[target="_blank"] {
  width: 800px;
  height: 600px;
  display: inline-block;
  position: relative;
  text-decoration: none;
  background-color: var(--success-color) !important;
}

a[target="_blank"]:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
}

a[target="_blank"] i.yc-facebook:before {
  font-family: "FontAwesome";
  content: "\f09a";
  margin-left: 6px;
  margin-right: 7px;
  color: #000000;
}

a[target="_blank"] i.yc-instagram:before {
  font-family: "FontAwesome";
  content: "\f16d";
  margin-left: 6px;
  margin-right: 7px;
  color: #000000;
}

a[target="_blank"] i.yc-twitter:before {
  font-family: "FontAwesome";
  content: "\f095";
  margin-left: 6px;
  margin-right: 7px;
  color: #000000;
}




   .single-product .single-price span.before {
   font-size: 18px;
   font-weight: bold;
   margin-left: 5px;
   line-height: 22px;
   }
   .single-product .single-price span.before {
   text-decoration: none;
   position: relative;
   }
   .single-product .single-price span.before::before {
   top: 60%; /*tweak this to adjust the vertical position if it's off a bit due to your font family */
   background: red; /*this is the color of the line*/
   opacity: 0.7;
   content: "";
   width: 110%;
   position: absolute;
   height: 2px;
   border-radius: 0.1em;
   left: -5%;
   white-space: nowrap;
   display: block;
   transform: rotate(-10deg);
   }
  

  
    @media (max-width: 425px) { .products-style-2, .products-grid, .categories-style-1 
    { grid-template-columns: repeat(2,1fr); } .products-grid .product-item .product-actions .button
    { min-width: 100%; } } 
    
    

.currency-value.after {
  float: right;
  font-weight: bold;
  color: red;
}

.currency-value.before {
  float: left;
  font-weight: bold;
  color: red;
}
</style>